home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / A_C / CRSHK10A.ZIP / INSTALL.BAT < prev   
DOS Batch File  |  1995-01-06  |  2KB  |  62 lines

  1. @echo off
  2. cls
  3. Echo Working....
  4. if exist cr1.00a goto CHECKPARMS
  5. goto ERROR
  6. :CHECKPARMS
  7. if %1x==x goto USAGE
  8. if %2x==x goto USAGE
  9. if %2==%1 goto USAGE
  10. goto CHECKCD
  11. :USAGE
  12. Echo Error! You must specify both the hard drive and CDROM drive letters
  13. Echo.
  14. Echo For example, if you wish to install Creature Shock to your C:
  15. Echo drive and your CDROM drive is the D: drive then type the following 
  16. Echo.
  17. Echo                INSTALL C: D:
  18. Echo.
  19. goto END:
  20. :CHECKCD
  21. if exist %2\shock.exe goto OK
  22. goto CDERROR
  23. :OK
  24. md %1\crshock > NUL
  25. md %1\crshock\fly > NUL
  26. copy %2\crshock\fly\*.* %1\crshock\fly > NUL
  27. md %1\crshock\voc > NUL
  28. copy %2\crshock\voc\*.* %1\crshock\voc > NUL
  29. copy creature.cfg %1\crshock > NUL
  30. copy dos4gw.exe %1\crshock > NUL
  31. copy %2\install.exe %1\crshock > NUL
  32. copy %2\shock.exe %1\crshock > NUL
  33. %1
  34. cd\crshock
  35. Echo.
  36. Echo The Creature Shock installation program is now going to be started.
  37. Echo When it starts please verify that both the hard drive 
  38. Echo Installation Directory and CDROM drive letters are correct.
  39. Echo.
  40. pause
  41. install
  42. cls
  43. Echo Creature Shock is now installed. Type 'SHOCK' to begin the game.
  44. goto END
  45. :ERROR
  46. Echo Error! All of the files needed by the installer couldn't be found.
  47. Echo.
  48. Echo This can be caused by attempting to start the installer from a 
  49. Echo drive or directory other than the one in which the installer is located.
  50. Echo.
  51. Echo For example, if the Creature Shock update disk is in the A: drive
  52. Echo then make sure you are at the A: prompt before trying to run 
  53. Echo this batch file.
  54. goto END
  55. :CDERROR
  56. Echo Error! Please insert Creature Shock disk 1 into your CDROM drive
  57. Echo and try again.
  58. goto END
  59. :END
  60.  
  61.  
  62.